go/types.Checker.rawExpr (method)
13 uses
go/types (current package)
builtins.go#L969: check.rawExpr(nil, x1, arg, nil, false) // permit trace for types, e.g.: new(trace(T))
call.go#L408: check.rawExpr(nil, &x, e, nil, true)
call.go#L1034: check.rawExpr(nil, &x, e, nil, true)
eval.go#L94: check.rawExpr(nil, &x, expr, nil, true) // allow generic expressions
expr.go#L972: func (check *Checker) rawExpr(T *target, x *operand, e ast.Expr, hint Type, allowGeneric bool) exprKind {
expr.go#L1083: kind := check.rawExpr(nil, x, e.X, nil, false)
expr.go#L1276: check.rawExpr(T, x, e, nil, false)
expr.go#L1283: check.rawExpr(nil, x, e, nil, true)
expr.go#L1295: check.rawExpr(nil, &x, e, nil, false)
expr.go#L1326: check.rawExpr(nil, x, e, hint, false)
expr.go#L1336: check.rawExpr(nil, x, e, nil, allowGeneric)
stmt.go#L177: switch check.rawExpr(nil, &x, call, nil, false) {
stmt.go#L445: kind := check.rawExpr(nil, &x, s.X, nil, false)